home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / select-to-pattern.scm < prev    next >
Text File  |  2009-12-15  |  4KB  |  105 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Based on select-to-brush by
  5. ;         Copyright (c) 1997 Adrian Likins aklikins@eos.ncsu.edu
  6. ; Author Cameron Gregory, http://www.flamingtext.com/
  7. ;
  8. ; Takes the current selection, saves it as a pattern and makes it the active
  9. ; pattern
  10. ;
  11. ; This program is free software; you can redistribute it and/or modify
  12. ; it under the terms of the GNU General Public License as published by
  13. ; the Free Software Foundation; either version 2 of the License, or
  14. ; (at your option) any later version.
  15. ;
  16. ; This program is distributed in the hope that it will be useful,
  17. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ; GNU General Public License for more details.
  20. ;
  21. ; You should have received a copy of the GNU General Public License
  22. ; along with this program; if not, write to the Free Software
  23. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25.  
  26. (define (script-fu-selection-to-pattern image drawable desc filename)
  27.  
  28.   (let* (
  29.         (selection-width 0)
  30.         (selection-height 0)
  31.         (selection-bounds 0)
  32.         (select-offset-x 0)
  33.         (select-offset-y 0)
  34.         (pattern-draw-type 0)
  35.         (pattern-image-type 0)
  36.         (pattern-image 0)
  37.         (pattern-draw 0)
  38.         (filename2 0)
  39.         )
  40.  
  41.   (if (= (car (gimp-selection-is-empty image)) TRUE)
  42.       (begin
  43.         (set! selection-width (car (gimp-drawable-width drawable)))
  44.         (set! selection-height (car (gimp-drawable-height drawable)))
  45.       )
  46.       (begin
  47.         (set! selection-bounds (gimp-drawable-mask-bounds drawable))
  48.         (set! select-offset-x (cadr selection-bounds))
  49.         (set! select-offset-y (caddr selection-bounds))
  50.         (set! selection-width (- (cadr (cddr selection-bounds)) select-offset-x))
  51.         (set! selection-height (- (caddr (cddr selection-bounds)) select-offset-y))
  52.       )
  53.   )
  54.  
  55.   (if (= (car (gimp-drawable-has-alpha drawable)) TRUE)
  56.       (set! pattern-draw-type RGBA-IMAGE)
  57.       (set! pattern-draw-type RGB-IMAGE)
  58.   )
  59.  
  60.   (set! pattern-image-type RGB)
  61.  
  62.   (set! pattern-image (car (gimp-image-new selection-width selection-height
  63.                                            pattern-image-type)))
  64.  
  65.   (set! pattern-draw
  66.         (car (gimp-layer-new pattern-image selection-width selection-height
  67.                              pattern-draw-type "Pattern" 100 NORMAL-MODE)))
  68.  
  69.   (gimp-drawable-fill pattern-draw TRANSPARENT-FILL)
  70.  
  71.   (gimp-image-add-layer pattern-image pattern-draw 0)
  72.  
  73.   (gimp-edit-copy drawable)
  74.  
  75.   (let ((floating-sel (car (gimp-edit-paste pattern-draw FALSE))))
  76.     (gimp-floating-sel-anchor floating-sel))
  77.  
  78.   (set! filename2 (string-append gimp-directory
  79.                                  "/patterns/"
  80.                                  filename
  81.                                  (number->string image)
  82.                                  ".pat"))
  83.  
  84.   (file-pat-save 1 pattern-image pattern-draw filename2 "" desc)
  85.   (gimp-patterns-refresh)
  86.   (gimp-context-set-pattern desc)
  87.  
  88.   (gimp-image-delete pattern-image)
  89.   (gimp-displays-flush)
  90.   )
  91. )
  92.  
  93. (script-fu-register "script-fu-selection-to-pattern"
  94.   _"To _Pattern..."
  95.   _"Convert a selection to a pattern"
  96.   "Cameron Gregory <cameron@bloke.com>"
  97.   "Cameron Gregory"
  98.   "09/02/2003"
  99.   "RGB* GRAY*"
  100.   SF-IMAGE     "Image"        0
  101.   SF-DRAWABLE  "Drawable"     0
  102.   SF-STRING   _"Pattern name" "My Pattern"
  103.   SF-STRING   _"File name"    "mypattern"
  104. )
  105.